Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

229
Views
Firebase Error "Uncaught Error in snapshot listener: FirebaseError: The query requires an index"

I'm getting the above error when I run the following query. I can visit the link provided to create an index, but if I understand this correctly I don't think that is feasible since the query is searching through the "members" map for the current users ID which will obviously change depending on the user. Is there some kind of workaround to this issue or would I need to restructure my database?

const subscribeChats = () => {
 const chatsQuery = query(
  collection(db, "chats"),
  where(`members.${getAuth().currentUser.uid}.inChat`, "==", true),
  where(`members.${getAuth().currentUser.uid}.isHidingChat`, "==", false),
  orderBy("lastActive", "desc")
 );

 return onSnapshot(chatsQuery, (snapshot) => {
  setChatsList(
   snapshot.docs.map((doc) => {
    return { id: doc.id, data: doc.data() };
   })
  );
 });
};
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!